home *** CD-ROM | disk | FTP | other *** search
/ Risc World 1 / Risc World 1.iso / software / issue2 / begprog / Prog_2_5 (.txt) < prev   
RISC OS BBC BASIC V Source  |  2000-04-10  |  600b  |  22 lines

  1.   Program to add or subtract VAT from a price
  2. $ + " at line " + 
  3.  "Do you want to -"
  4.  " 1. Add VAT to the net price"
  5.  " 2. Calculate net price from VAT inclusive price"
  6.  " 3. Exit the program"
  7.  "Please choose " choice%
  8.  choice% 
  9.  1 : 
  10.  "Enter price " price
  11. %           result = price * 1.175
  12. ,           
  13.  "Price with VAT is " result
  14.  2 : 
  15.  "Enter price " price
  16. %           result = price / 1.175
  17. /           
  18.  "Price without VAT is " result
  19.  3 : 
  20.  "You must enter 1, 2 or 3"
  21.  choice% = 3
  22.